home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Workbench Add-On
/
Workbench Add-On - Volume 1.iso
/
BBS-Archive
/
Dev
/
gcc263-inclib.lha
/
gnu
/
include
/
init.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-02-22
|
560b
|
22 lines
#ifndef _INIT_H
#define _INIT_H
#ifndef __GNUC__
you loose !
#endif
/*
* support macros to declare and reference functions, that are automatically
* called at init/finish time. This only works with gnu-ld, and is
* implemented with those SET_.. symbols
*/
#define DEF_INIT_FUNC(fname) \
asm(".stabs \"___init_vector\", 22,0,0,_" #fname)
#define REF_INIT_FUNC(fname) asm(".globl _" #fname)
#define DEF_FINISH_FUNC(fname) \
asm(".stabs \"___finish_vector\", 22,0,0,_" #fname)
#define REF_FINISH_FUNC(fname) asm(".globl _" #fname)
#endif /* _INIT_H */